共计 306 个字符,预计需要花费 1 分钟才能阅读完成。
URL
var url = 'https://www.luffycity.com/study/chapter/39863/2'
编码
encodeURIComponent() 编码 ( 使用最多的方法)
encodeURI(url) (只能编码空格)
console.log(encodeURI(url)); // 只能编码空格
console.log(encodeURIComponent(url));
解码
decondeURIComponent()
console.log(decodeURI(encodeURI(url)));
console.log(decodeURIComponent(encodeURIComponent(url)));
正文完